home *** CD-ROM | disk | FTP | other *** search
- depth = 1;
- childlock = false;
- ChildLock = {};
- ChildLock.active = false;
- ChildLock.lockDialog = function()
- {
- lingo("spriteDialog.show(\"child_lock\")");
- };
- ChildLock.unlockDialog = function()
- {
- lingo("spriteDialog.show(\"child_unlock\")");
- };
- ChildLock.lock = function()
- {
- this.active = true;
- var node = sideMenu.mc_lock.node;
- var str = node.attributes.lock;
- node.attributes.lock = node.attributes.label;
- node.attributes.label = str;
- this.EB.broadcastMessage("childLockSet",true);
- };
- ChildLock.unlock = function()
- {
- this.active = false;
- var node = sideMenu.mc_lock.node;
- var str = node.attributes.lock;
- node.attributes.lock = node.attributes.label;
- node.attributes.label = str;
- this.EB.broadcastMessage("childLockSet",false);
- };
- ChildLock.EB = {};
- ASBroadcaster.initialize(ChildLock.EB);
-